Fix documentation for UTF8PROC_COMPOSE (#295)
authorTechcable <techcable@techcable.net>
Mon, 14 Jul 2025 13:49:31 +0000 (06:49 -0700)
committerTechcable <git@techcable.net>
Mon, 14 Jul 2025 13:51:25 +0000 (06:51 -0700)
The documentation for UTF8PROC_COMPOSE and UTF8PROC_DECOMPOSE options was the same.
Fic

utf8proc.h

index c83dc585a00f0086aea1b9f0edaa3bedfa2b7388..59e538936fcc12e0cdef366557cb1af31edffa91 100644 (file)
@@ -150,7 +150,7 @@ typedef enum {
   UTF8PROC_STABLE    = (1<<1),
   /** Compatibility decomposition (i.e. formatting information is lost). */
   UTF8PROC_COMPAT    = (1<<2),
-  /** Return a result with decomposed characters. */
+  /** Return a result with composed characters. */
   UTF8PROC_COMPOSE   = (1<<3),
   /** Return a result with decomposed characters. */
   UTF8PROC_DECOMPOSE = (1<<4),